home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / editors / eedraw / src / ed / eecreate.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-03  |  618 b   |  18 lines

  1. /*****************************************************************************
  2. *   Program to draw EE diagrams.                         *
  3. *                                         *
  4. * This module creates new objects.                         *
  5. *                                         *
  6. * Written by:  Gershon Elber            IBM PC Ver 1.0,    Oct. 1989    *
  7. *****************************************************************************/
  8.  
  9. #ifndef EECREATE_H
  10. #define EECREATE_H
  11.  
  12. void AutoPanActiveWindow(void);
  13. DrawGenericStruct *CreateNewPolylineStruct(int Width,int TypeFlag);
  14. DrawGenericStruct *CreateNewConnectionStruct(void);
  15. DrawGenericStruct *CreateNewTextStruct(void);
  16.  
  17. #endif EECREATE_H
  18.